-
Notifications
You must be signed in to change notification settings - Fork 81
Support Set
inspection in DWDS
#2024
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Is there a reason we check in the generated |
@@ -150,6 +151,11 @@ void printMap() { | |||
print(map); // Breakpoint: printMap | |||
} | |||
|
|||
void printSet() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know we currently run those tests for sound null safety only, but I think we should keep the weak and sound project in sync (just in case:). Should we change the _testPackage/web/main to match?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done, added the test cases for lists, and maps as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM with an ask to make weak tests fixtures match the sound ones
Fixes #2001, flutter/devtools#5323
This PR adds support for
Set
inspection in DWDS. Seems likeSet
support was never added before.